From f2e0097cacb7f497b61a31035eca2c11704e6548 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Tue, 5 Jan 2021 16:01:11 -0800 Subject: [PATCH] gtk: fix brace initialization for bloom filter This was breaking CI for macOS and it is a simple enough change to ensure that just works for the internal buckets. --- gtk/gtkcountingbloomfilterprivate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcountingbloomfilterprivate.h b/gtk/gtkcountingbloomfilterprivate.h index 9151901d75..78a3f54880 100644 --- a/gtk/gtkcountingbloomfilterprivate.h +++ b/gtk/gtkcountingbloomfilterprivate.h @@ -79,7 +79,7 @@ static inline gboolean gtk_counting_bloom_filter_may_contain (const GtkCounti * * The filter does not need to be freed. */ -#define GTK_COUNTING_BLOOM_FILTER_INIT { 0, } +#define GTK_COUNTING_BLOOM_FILTER_INIT {{0}} /* * gtk_counting_bloom_filter_add: -- 2.30.2